200 |
Disables the control
|
199 |
Show icons
|
198 |
Displays the control's version
|
197 |
Changes the control's border (EBN)
|
196 |
Changes the control's border
|
195 |
Display the logo on the control's background
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Picture = oGraph.ExecuteTemplate("loadpicture(`c:\exontrol\images\card.png`)") oGraph.PictureDisplay = 2 oGraph.AutoFit = true oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil" oGraph.Series.Add("1410,1390,331,276,225,213") oGraph.SeriesColors = "blue" oGraph.EndUpdate() |
194 |
Changes the control's font
|
193 |
Shows the value-scroll (vertical scroll bar for area-compatible chart types)
|
192 |
No values are shown
|
191 |
No labels on category-axis are shown
|
190 |
No category grid lins are shown
|
189 |
No category ticks are shown
|
188 |
Defines the lower and upper margins of the valueSize property (CTRL + Middle button and drag to resize the values)
|
187 |
Even though I set the AutoFit property to False, the control still gets resized when I click CTRL + Middle button
|
186 |
Defines the angle (in degrees) the value-line is rotated by, when the values goes up(positive) or down(negative)
OleObject oGraph,var_CategoryAxis,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Misc(23,0) oGraph.Misc(24,90) var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Green,Black,Red,Lime,Orange,Red" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Serie = oGraph.Series.Add("1410,331,-1390,-276,1225,213") var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/ var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (value format ``)" var_Serie.Type = "line" oGraph.EndUpdate() |
185 |
Defines the additional angle (in degrees) the value-line is rotated by
|
184 |
Defines the distance to extend the value-line by
|
183 |
Defines the distance from the edge of the outer circle where the values are displayed
|
182 |
Defines the distance from the edge of the inner circle where the values are displayed
|
181 |
Defines the padding between rings of the "pie" chart-type
|
180 |
Requests for a new layout once the serie's visible property is changed
|
179 |
Prevents rotating the labels
|
178 |
Defines the angle (in degrees) to start the circular-compatible charts (radial or pie)
|
177 |
Defines polygonal instead of circular
|
176 |
Defines the distance (proportionally with the valueSize property) between the first, next and last value of the same category and its border
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Misc(11,0.5) oGraph.Misc(12,0.5) oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil" oGraph.Series.Add("1410,1390,331,276,225,213") oGraph.Series.Add("9900,3300,980,190,90,8") oGraph.EndUpdate() |
175 |
Ensures that the marginal labels of the value-axis ensure fit the axis's client-rectangle
|
174 |
Prevents updating the margins/minimum/maximum of the value-axis when the user scrolls the data
|
173 |
Defines the padding for labels and title of the value-axis
|
172 |
Defines the size (height for horizontal axis and width for vertical axis) to display the category-axis (line and ticks)
|
171 |
Defines the padding for labels and title of the category-axis
|
170 |
Defines the size (height for horizontal axis and width for vertical axis) to display the category-axis (line and ticks)
|
169 |
Defines the minimum/maximum portion (as a proportion of major unit, as a numeric-value between 0 and 1) to extend the axis before the first/after the last value of the serie (minimum, maximum value)
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Misc(4,1) oGraph.Misc(5,1) oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil" oGraph.Series.Add("1410,1390,331,276,225,213") oGraph.SeriesColors = "blue" oGraph.EndUpdate() |
168 |
Defines the number of digits to appear after the decimal point (as it is)
|
167 |
Defines the number of digits to appear after the decimal point
|
166 |
Defines the inferior and superior limits of the number of major-unit intervals an axis can display
|
165 |
Defines the base major-units alternatives (separated by comma) the control uses to calculate the major-unit for the axes
|
164 |
Customizes the tooltips to show on category-axis, when the crosshair intersects the category-axis
OleObject oGraph,var_Cursor,var_Serie,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxis = oGraph.ValueAxis var_ValueAxis.Format = "value + `°`" var_ValueAxis.CursorFormat = "``" oGraph.CategoryAxis.CursorFormat = "`<b><fgcolor F0F0F0> ` + value + ` `" var_Serie = oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain") var_Serie.Type = "RangeColumn" var_Serie.CursorFormat = "%V0 +`° - ` + %V1 + `°`" oGraph.SeriesColors = "green" var_Cursor = oGraph.Cursor var_Cursor.Visible = true var_Cursor.SerieTooltipBackColor = "black" var_Cursor.SerieTooltipForeColor = "rgb(254,254,254)" var_Cursor.TooltipPad = 4 var_Cursor.ShowCursorValueLine = false oGraph.EndUpdate() |
163 |
Defines the configuration options to show the grid lines and labels between for the overview panel
OleObject oGraph,var_FormatGridLinesOptions,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() var_ValueAxis = oGraph.ValueAxis var_ValueAxis.Format = "value / 1000000" var_ValueAxis.MajorUnit = 50000000 var_FormatGridLinesOptions = oGraph.CategoryAxis.OverviewGridLines var_FormatGridLinesOptions.Format = "`<fgcolor red><b>` + (value left 4)" var_FormatGridLinesOptions.Color = "red" var_FormatGridLinesOptions.Style = 1 var_FormatGridLinesOptions.Width = 2 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" oGraph.SeriesColors = "blue" oGraph.Series.Add("Volume") oGraph.Overview.Visible = true oGraph.EndUpdate() |
162 |
Add additional grid-lines for categories
OleObject oGraph,var_CategoryAxis,var_FormatGridLinesOptions oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_FormatGridLinesOptions = var_CategoryAxis.ChartGridLines var_FormatGridLinesOptions.Format = "value = `Pakistan`" var_FormatGridLinesOptions.Align = 1024 var_FormatGridLinesOptions.Width = 2 var_FormatGridLinesOptions.Color = "black" var_FormatGridLinesOptions.Skip = 1 oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130") oGraph.SeriesColors = "lime" oGraph.EndUpdate() |
161 |
Add grid-lines for categories
|
160 |
Shifts horizontally or vertically the labels relative to their original positions
|
159 |
Combines/Merges categories sharing consecutive names according to the Format property
OleObject oGraph,var_CategoryAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.CategoryAxis.Visible = true var_CategoryAxis = oGraph.CategoryAxes.Add("Winter,Winter,Spring,Spring,Spring,Summer,Summer,Summer,Autumn,Autumn,Autumn,Winter") var_CategoryAxis.Format = "value" var_CategoryAxis.Split = true var_CategoryAxis.MajorGridLines.Color = "black" oGraph.ValueAxis.Format = "value + `°`" oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn" oGraph.SeriesColors = "lime" oGraph.EndUpdate() |
158 |
Combines/Merges categories sharing consecutive names according to the Format property
OleObject oGraph,var_CategoryAxis,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Date" var_CategoryAxis.Format = "dateS(value left 7) format `MMM`" var_CategoryAxis.Split = true var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Serie = oGraph.Series.Add() var_Serie.Name = "msft" var_Serie.Data = "Open,High,Low,Close" var_Serie.Type = "candle" oGraph.EndUpdate() |
157 |
Defines the category-axis's background color
|
156 |
Defines the color, size, style, skip and step configuration options of the major ticks to be shown on the value-axis
|
155 |
Defines the color, size, style, skip and step configuration options of the major grid-lines to be shown by the value-axis on the chart panel
|
154 |
Defines the color, size and style to display the line of the category-axis
|
153 |
Specifies the rotation angle (in degrees) for the title and labels of the category-axis, in 'labels,title' format
|
152 |
Defines the title of the category-axis
|
151 |
Changes the font attributes to apply on the title and labels of the category-axis
|
150 |
Defines the direction of the category axis
|
149 |
Aligns the category-axis to bottom/right or top/left side of the view
|
148 |
Hides the category axis
|
147 |
Customizes the labels to show on category axis
|
146 |
Defines the categories (method 2)
|
145 |
Defines the categories (method 1)
|
144 |
Adds multiple category-axes
OleObject oGraph,var_CategoryAxis,var_Legend oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.CategoryAxis.MajorGridLines.Color = "lightgray" var_CategoryAxis = oGraph.CategoryAxes.Add("Winter,Winter,Spring,Spring,Spring,Summer,Summer,Summer,Autumn,Autumn,Autumn,Winter") var_CategoryAxis.Format = "value" var_CategoryAxis.Split = true var_CategoryAxis.Tfi = "bold" var_CategoryAxis.MajorGridLines.Color = "black" oGraph.ValueAxis.Format = "value + `°`" oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn" oGraph.Series.Add("Jan(-4 2), Feb(-3 4), Mar(1 10), Apr(5 16), May(10 21), Jun(13 25), Jul(15 28), Aug(14 27), Sep(10 22), Oct(5 15), Nov(0 7), Dec(-3 3)","Romania").Type = "RangeColumn" var_Legend = oGraph.Legend var_Legend.Visible = true var_Legend.Dock = 3 oGraph.EndUpdate() |
143 |
Redefines the major-unit of the value-axis
|
142 |
Redefines the margins/limits of the value-axis
OleObject oGraph,var_Serie,var_Series,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxis = oGraph.ValueAxis var_ValueAxis.Min = -100 var_ValueAxis.Max = 6000 oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Misc(6,3) oGraph.EndUpdate() |
141 |
Defines the start/end position of the value-axis (relative to full axis)
OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxes = oGraph.ValueAxes var_ValueAxes.Add("p").End = 0.75 var_ValueAxis = var_ValueAxes.Add("a") var_ValueAxis.End = 0.25 var_ValueAxis.Visible = false var_ValueAxis.ColorChart = 16119285 var_ValueAxis.Reverse = true var_ValueAxis.MajorGridLines.Width = 0 var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "p" var_Serie.Type = "Line" var_Serie.Misc(6,3) var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "a" oGraph.Legend.Visible = true oGraph.EndUpdate() |
140 |
Customizes the tooltips to show on value-axis, when the crosshair hovers the chart
|
139 |
Hides the tooltip that's shown over the value-axis, while cursor hovers the serie
|
138 |
Shifts horizontally or vertically the labels relative to their original positions
|
137 |
Defines the color to apply on the chart's background right to the value-axis
|
136 |
Changes the value-axis's background color
|
135 |
Defines the color, size, style, skip and step configuration options of the major grid-lines to be shown by the value-axis on the chart panel
|
134 |
Defines the color, size, style, skip and step configuration options of the major ticks to be shown on the value-axis
|
133 |
Defines the color, size and style to display the line of the value-axis
|
132 |
Converts the serie's values to [0,1] range, as percentages (the values area always numbers between 0 and 1)
|
131 |
Defines the rotation angle (in degrees) for the title and labels of the axis, in 'labels,title' format
|
130 |
Defines the title of the value-axis
|
129 |
Specifies the font attributes to apply on the title and labels of the value-axis
|
128 |
Defines the direction of the value axis
|
127 |
Aligns the value-axis to bottom/right or top/left side of the view
|
126 |
Customizes the labels of the value axis
|
125 |
Customizes the labels of the value axis
|
124 |
Hides the value-axis
|
123 |
Changes the position of value-axis (click to change the value-axis's position)
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/ /* oGraph = ole_1.Object oGraph.ValueAxes.Item("a").Position = 0 */ /*end event Click*/ OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxes = oGraph.ValueAxes var_ValueAxes.Add("p") var_ValueAxes.Add("a").Color = "teal" var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "p" var_Serie.Type = "Line" var_Serie.Misc(6,3) var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "a" oGraph.Legend.Visible = true oGraph.EndUpdate() |
122 |
Access the value-axis giving its name (click to change the value-axis's background)
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/ /* oGraph = ole_1.Object oGraph.ValueAxes.Item("a").ColorChart = 16119285 oGraph.Refresh() */ /*end event Click*/ OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxes = oGraph.ValueAxes var_ValueAxes.Add("p").Start = 0.25 var_ValueAxis = var_ValueAxes.Add("a") var_ValueAxis.End = 0.25 var_ValueAxis.Visible = false var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "p" var_Serie.Type = "Line" var_Serie.Misc(6,3) var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "a" oGraph.Legend.Visible = true oGraph.EndUpdate() |
121 |
Specifies the name of the value axis to use
OleObject oGraph,var_CategoryAxis,var_Legend,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis,var_ValueAxis1 oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.ValueSize = 18 var_ValueAxes = oGraph.ValueAxes var_ValueAxis = var_ValueAxes.Add("pop-ax") var_ValueAxis.Name = "pop-ax" var_ValueAxis.Start = 0.25 var_ValueAxis.Align = 0 var_ValueAxis1 = var_ValueAxes.Add("area-ax") var_ValueAxis1.Name = "area-ax" var_ValueAxis1.End = 0.25 var_ValueAxis1.Visible = false var_ValueAxis1.ColorChart = 16119285 var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "pop-ax" var_Serie.Misc(6,3) var_Serie.Vertical = true var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "area-ax" var_Legend = oGraph.Legend var_Legend.Visible = true var_Legend.Dock = 3 var_Legend.Align = 0 oGraph.EndUpdate() |
120 |
Remove a value-axis (click to remove the first value-axis)
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/ /* oGraph = ole_1.Object oGraph.ValueAxes.Remove(0) */ /*end event Click*/ OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxes = oGraph.ValueAxes var_ValueAxes.Add("p").Start = 0.25 var_ValueAxis = var_ValueAxes.Add("a") var_ValueAxis.End = 0.25 var_ValueAxis.Visible = false var_ValueAxis.ColorChart = 16119285 var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "p" var_Serie.Type = "Line" var_Serie.Misc(6,3) var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "a" oGraph.Legend.Visible = true oGraph.EndUpdate() |
119 |
Remove all value-axes (click to clear the value-axes)
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/ /* oGraph = ole_1.Object oGraph.ValueAxes.Clear() */ /*end event Click*/ OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxes = oGraph.ValueAxes var_ValueAxes.Add("p").Start = 0.25 var_ValueAxis = var_ValueAxes.Add("a") var_ValueAxis.End = 0.25 var_ValueAxis.Visible = false var_ValueAxis.ColorChart = 16119285 var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "p" var_Serie.Type = "Line" var_Serie.Misc(6,3) var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "a" oGraph.Legend.Visible = true oGraph.EndUpdate() |
118 |
Adds multiple value-axes
OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true var_ValueAxes = oGraph.ValueAxes var_ValueAxes.Add("p").Start = 0.25 var_ValueAxis = var_ValueAxes.Add("a") var_ValueAxis.End = 0.25 var_ValueAxis.Visible = false var_ValueAxis.ColorChart = 16119285 var_CategoryAxis = oGraph.CategoryAxis var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" var_CategoryAxis.MajorGridLines.Color = "lightgray" var_Series = oGraph.Series var_Serie = var_Series.Add("4600,1300,747,579,0,422,42") var_Serie.Name = "Population" var_Serie.Axis = "p" var_Serie.Type = "Line" var_Serie.Misc(6,3) var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856") var_Serie1.Name = "Area" var_Serie1.Axis = "a" oGraph.Legend.Visible = true oGraph.EndUpdate() |
117 |
Defines the foreground color to show the visible values within the control's legend
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Background(208,RGB(0,0,1)) oGraph.Background(206,RGB(0,0,1)) oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area" var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") var_Serie.Name = "Population" var_Serie.Visible = false oGraph.Legend.Visible = true oGraph.EndUpdate() |
116 |
Defines a different background color to show the visible values within the control's legend
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Background(204,RGB(240,240,240)) oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area" var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") var_Serie.Name = "Population" var_Serie.Visible = false oGraph.Legend.Visible = true oGraph.EndUpdate() |
115 |
Defines a different background color to show the hidden values within the control's legend
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Background(205,RGB(240,240,240)) oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area" var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") var_Serie.Name = "Population" var_Serie.Visible = false oGraph.Legend.Visible = true oGraph.EndUpdate() |
114 |
Defines the foreground color to show the hidden values within the control's legend
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Background(209,RGB(220,220,220)) oGraph.Background(207,RGB(220,220,220)) oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area" var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") var_Serie.Name = "Population" var_Serie.Visible = false oGraph.Legend.Visible = true oGraph.EndUpdate() |
113 |
Hides a symbol or item of the legend by code
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.AutoFit = true oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area" var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") var_Serie.Name = "Population" var_Serie.Visible = false oGraph.Legend.Visible = true oGraph.EndUpdate() |
112 |
Defines the percentage of transparency for displaying tooltips on series
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(211,RGB(75,0,0)) oGraph.AutoFit = true oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)") oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") oGraph.Cursor.Visible = true oGraph.EndUpdate() |
111 |
Defines the percentage of transparency for displaying tooltips on axes
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(210,RGB(75,0,0)) oGraph.AutoFit = true oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)") oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") oGraph.Cursor.Visible = true oGraph.EndUpdate() |
110 |
Specifies the percent of transparency to show the overview-selection (0 indicates opaque, 50% indicates semi-transparent, and 100% indicates fully transparent)
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGraph.Background(203,RGB(75,0,0)) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
109 |
Changes the color to show the overview's selection (EBN color)
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGraph.Background(202,16777216 /*0x1000000*/) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
108 |
Changes the color to show the overview's selection (solid color)
|
107 |
Changes the color to show the overview's selection
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(202,RGB(255,0,0)) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
106 |
Changes the overview's background
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(200,RGB(240,240,240)) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
105 |
Specifies the visual-appearance to display the left/right parts outside of the overview-selection
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(200,RGB(240,240,240)) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
104 |
Adds left/ resize-margins of the overview's selection to resize it (EBN)
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGraph.Background(199,16777216 /*0x1000000*/) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
103 |
Adds left/ resize-margins of the overview's selection to resize it
OleObject oGraph,var_Serie oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(199,RGB(1,0,0)) oGraph.ValueSize = 6 oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" var_Serie = oGraph.Series.Add() var_Serie.Name = "aapl" var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" var_Serie.Type = "candle" oGraph.Overview.Visible = true oGraph.EndUpdate() |
102 |
Changes the colors to show the value's tooltip
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.Background(65,RGB(1,0,0)) oGraph.Background(66,RGB(255,255,255)) oGraph.AutoFit = true oGraph.Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").ShowValue = 1 oGraph.EndUpdate() |
101 |
Changes the visual appearance of the borders of the tooltips
OleObject oGraph oGraph = ole_1.Object oGraph.BeginUpdate() oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oGraph.Background(64,16777216 /*0x1000000*/) oGraph.AutoFit = true oGraph.Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").ShowValue = 1 oGraph.EndUpdate() |